CxFmsRawDeviceDataCtrl Events
The CxFmsRawDeviceDataCtrl object contains the following events.
EndRefresh
A refresh operation has completed.
Syntax
CxFmsRawDeviceDataCtrlObject_EventEndRefresh(Result As Integer, Status As Integer)
Parameters
| Parameter | Required | Description |
|---|---|---|
|
Result |
Yes |
An integer specifying whether the refresh succeeded or failed. Possible values for this property are as follows.
|
|
Status |
Yes |
An integer specifying whether or not the refresh was canceled. Possible values for this property are as follows.
|
Example
The following example displays a message box if the refresh was canceled.
Copy
EndRefresh
Sub FmsRawDeviceData_EventEndRefresh(Result, Status)
Dim This : Set This = FmsRawDeviceData
If Status = 1 Then
MsgBox "Refresh canceled"
End If
End Sub
Initialize
The control is initialized.
Syntax
CxFmsRawDeviceDataCtrlObject_EventInitialize()
Example
The following example displays a message box when the control is initialized.
Copy
Initialize
Sub FmsRawDeviceData_EventInitialize()
Dim This : Set This = FmsRawDeviceData
MsgBox "Control initialized"
End Sub
PumpData
(Obsolete)


